type net/http.http2FrameWriteRequest
47 uses
net/http (current package)
h2_bundle.go#L4088: wantWriteFrameCh: make(chan http2FrameWriteRequest, 8),
h2_bundle.go#L4216: wantWriteFrameCh chan http2FrameWriteRequest // from handlers -> serve
h2_bundle.go#L4489: wr http2FrameWriteRequest // what was written (or attempted)
h2_bundle.go#L4497: func (sc *http2serverConn) writeFrameAsync(wr http2FrameWriteRequest) {
h2_bundle.go#L4543: sc.writeFrame(http2FrameWriteRequest{
h2_bundle.go#L4737: err := sc.writeFrameFromHandler(http2FrameWriteRequest{
h2_bundle.go#L4780: func (sc *http2serverConn) writeFrameFromHandler(wr http2FrameWriteRequest) error {
h2_bundle.go#L4800: func (sc *http2serverConn) writeFrame(wr http2FrameWriteRequest) {
h2_bundle.go#L4864: func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
h2_bundle.go#L4987: sc.startFrameWrite(http2FrameWriteRequest{
h2_bundle.go#L4997: sc.startFrameWrite(http2FrameWriteRequest{write: http2writeSettingsAck{}})
h2_bundle.go#L5010: sc.startFrameWrite(http2FrameWriteRequest{write: http2flushFrameWriter{}})
h2_bundle.go#L5071: sc.writeFrame(http2FrameWriteRequest{write: se})
h2_bundle.go#L5188: sc.writeFrame(http2FrameWriteRequest{write: http2writePingAck{f}})
h2_bundle.go#L5519: st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2streamError(st.id, http2ErrCodeInternal)})
h2_bundle.go#L5888: sc.writeFrameFromHandler(http2FrameWriteRequest{
h2_bundle.go#L5929: if err := sc.writeFrameFromHandler(http2FrameWriteRequest{
h2_bundle.go#L5952: sc.writeFrameFromHandler(http2FrameWriteRequest{
h2_bundle.go#L6017: sc.writeFrame(http2FrameWriteRequest{
h2_bundle.go#L6649: sc.writeFrame(http2FrameWriteRequest{
h2_bundle.go#L10124: Push(wr http2FrameWriteRequest)
h2_bundle.go#L10130: Pop() (wr http2FrameWriteRequest, ok bool)
h2_bundle.go#L10141: type http2FrameWriteRequest struct {
h2_bundle.go#L10160: func (wr http2FrameWriteRequest) StreamID() uint32 {
h2_bundle.go#L10176: func (wr http2FrameWriteRequest) isControl() bool {
h2_bundle.go#L10182: func (wr http2FrameWriteRequest) DataSize() int {
h2_bundle.go#L10199: func (wr http2FrameWriteRequest) Consume(n int32) (http2FrameWriteRequest, http2FrameWriteRequest, int) {
h2_bundle.go#L10200: var empty http2FrameWriteRequest
h2_bundle.go#L10221: consumed := http2FrameWriteRequest{
h2_bundle.go#L10235: rest := http2FrameWriteRequest{
h2_bundle.go#L10254: func (wr http2FrameWriteRequest) String() string {
h2_bundle.go#L10266: func (wr *http2FrameWriteRequest) replyToWriter(err error) {
h2_bundle.go#L10280: s []http2FrameWriteRequest
h2_bundle.go#L10285: func (q *http2writeQueue) push(wr http2FrameWriteRequest) {
h2_bundle.go#L10289: func (q *http2writeQueue) shift() http2FrameWriteRequest {
h2_bundle.go#L10296: q.s[len(q.s)-1] = http2FrameWriteRequest{}
h2_bundle.go#L10305: func (q *http2writeQueue) consume(n int32) (http2FrameWriteRequest, bool) {
h2_bundle.go#L10307: return http2FrameWriteRequest{}, false
h2_bundle.go#L10312: return http2FrameWriteRequest{}, false
h2_bundle.go#L10328: q.s[i] = http2FrameWriteRequest{}
h2_bundle.go#L10720: func (ws *http2priorityWriteScheduler) Push(wr http2FrameWriteRequest) {
h2_bundle.go#L10741: func (ws *http2priorityWriteScheduler) Pop() (wr http2FrameWriteRequest, ok bool) {
h2_bundle.go#L10828: func (ws *http2randomWriteScheduler) Push(wr http2FrameWriteRequest) {
h2_bundle.go#L10842: func (ws *http2randomWriteScheduler) Pop() (http2FrameWriteRequest, bool) {
h2_bundle.go#L10857: return http2FrameWriteRequest{}, false